b6e49b11494bc88d2f9053c6bab99a029d5b8621,integration-tests/src/test/java/tachyon/master/JournalIntegrationTest.java,JournalIntegrationTest,completedEditLogDeletionTest,#,174
Before Change
public void completedEditLogDeletionTest() throws Exception {
for (int i = 0; i < 124; i ++) {
mTfs.getOutStream(new TachyonURI("/a" + i),
new OutStreamOptions.Builder(mMasterTachyonConf).setBlockSizeBytes((i + 10) / 10 * 64)
.build()).close();
}
mLocalTachyonCluster.stopTFS();
After Change
public void completedEditLogDeletionTest() throws Exception {
for (int i = 0; i < 124; i ++) {
mTfs.createFile(new TachyonURI("/a" + i),
CreateFileOptions.defaults().setBlockSizeBytes((i + 10) / 10 * 64)).close();
}
mLocalTachyonCluster.stopTFS();